home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000114-20000217 / 000031_news@columbia.edu _Mon Jan 17 05:55:49 2000.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id FAA11681
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Mon, 17 Jan 2000 05:55:48 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id FAA00586
  7.     for kermit.misc@watsun.cc.columbia.edu; Mon, 17 Jan 2000 05:50:42 -0500 (EST)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: peter eichhorn <petere@assyst-intl.com>
  10. Subject: Re: Question on lockfiles...
  11. Date: Mon, 17 Jan 2000 11:18:46 +0100
  12. Organization: (posted via) Mnet Telekommunikations GmbH
  13. Message-ID: <3882EC85.5A3E@assyst-intl.com>
  14. To: kermit.misc@columbia.edu
  15.  
  16. Anders Faltros wrote:
  17.  
  18. > We are using kermit in a lab, and it sometimes happens that someone
  19. > terminates kermit in some erroneous way and the lockfile in
  20. >  remains after the program terminated.
  21. > We have no root access on the machines, so we can't just remove the
  22. > lockfiles.
  23. > Is there a way to tell kermit that other users should be able to remove
  24. > lockfiles, or is this perhaps a unix-question? Solaris 2.6 is used, ang
  25. > changing umask has no effect...
  26.  
  27. This depents on the permission of /var/spool/locks or of your kermit
  28. binary. Else you ask one to open /var/spool/locks or to allow the kermit
  29. binary to remove the lock file. On a Sun kermit should belong to daemon. 
  30. An ls -l returns the following:
  31.  
  32. -rwxr-xr-x  1 daemon    1826816 Jan  2 12:28 /usr/local/bin/kermit
  33.  
  34. while the permission of the locks dir looks like:
  35.  
  36. drwxrwsr-x  2 daemon        512 Jan 13 13:01 /var/spool/locks
  37.  
  38. - PeterE